home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 March / Macworld (1998-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / latex Mode / latexMenu.tcl < prev    next >
Encoding:
Text File  |  1997-12-17  |  31.4 KB  |  1,378 lines  |  [TEXT/ALFA]

  1. #############################################################################
  2. #############################################################################
  3. #
  4. # latexMenu.tcl (called from latex.tcl)
  5. #
  6. # LaTeX menu definitions and key bindings
  7. #
  8. #############################################################################
  9. #
  10. # Author:  Tom Scavo <trscavo@syr.edu>, Vince Darley <darley@fas.harvard.edu>
  11. #
  12. #############################################################################
  13. #############################################################################
  14.  
  15. proc latexMenu.tcl {} {}
  16.  
  17. namespace eval TeX::sub {}
  18. namespace eval TeX::mp {}
  19.  
  20. # The highest level menu macro, to be called initially or whenever 
  21. # the LaTeX menu must be rebuilt (as in 'shadowtexSig' in latex.tcl,
  22. # or 'toggleLaTeXMenus' below): (simplified VMD July 97)
  23. proc buildLaTeXMenuQuietly {} {
  24.     global texMenu useShortLaTeXMenu useAMSLaTeX TeX::Menus
  25.     toggleAMSLaTeXmenus
  26.     TeX::sub::MathModes
  27.     
  28.     menu::buildProc texMenu buildLaTeXMenu
  29.     menu::buildSome texMenu
  30.     markMenuItem {LaTeX Utilities} {Short LaTeX Menu} $useShortLaTeXMenu
  31.     markMenuItem {LaTeX Utilities} {AMS-LaTeX} $useAMSLaTeX
  32. }
  33.  
  34. # Toggle the short menu flag and rebuild the LaTeX menu.  If the
  35. # latter operation fails, toggle the flag back to its original position.
  36. proc toggleLaTeXMenus {} {
  37.     toggleLaTeXMenuItem useShortLaTeXMenu
  38.     buildLaTeXMenuQuietly
  39. }
  40. # Toggle the AMS-LaTeX flag, reload the macros and menu, and rebuild 
  41. # the LaTeX menu.  If either of the latter two operations fail, toggle
  42. # the flag back to its original position.
  43. proc toggleAMSLaTeX {} {
  44.     toggleLaTeXMenuItem useAMSLaTeX
  45.     menu::buildSome "Math Style" "Text Size"
  46. }
  47. proc toggleLaTeXMenuItem {flag} {
  48.     global $flag modifiedVars
  49.     set $flag [expr 1 - [set $flag]]
  50.     lappend modifiedVars $flag
  51. }
  52. # For special purposes only:
  53. proc TeX::sub::RebuildLaTeXUtils {} {
  54.     global useShortLaTeXMenu useAMSLaTeX
  55.     eval [TeX::sub::LaTeXUtilities]
  56.     markMenuItem {LaTeX Utilities} {Short LaTeX Menu} $useShortLaTeXMenu
  57.     markMenuItem {LaTeX Utilities} {AMS-LaTeX} $useAMSLaTeX
  58. }
  59.  
  60. proc listToDummySubmenus {l} {
  61.         foreach i $l {
  62.                 lappend ret [list menu -n $i {}]
  63.         }
  64.         return $ret
  65. }
  66.  
  67. # Return a short menu or a long menu, depending on the value of
  68. # the global variable 'useShortLaTeXMenu':
  69. proc buildLaTeXMenu {} {
  70.         global useShortLaTeXMenu TeX::Menus texMenu
  71.         if {$useShortLaTeXMenu} {
  72.             return [list build [concat \
  73.                 [listToDummySubmenus [set TeX::Menus(Top)]] \
  74.                 [list "LaTeX Help"] \
  75.                 {(-} \
  76.                 [listToDummySubmenus [set TeX::Menus(Bottom)]] \
  77.                 [listToDummySubmenus [list "Math Submenus" "Text Submenus"]] \
  78.                 ] \
  79.                 {TeX::mp::latex -M TeX -m} \
  80.                 [concat [set TeX::Menus(Top)] [set TeX::Menus(Bottom)] \
  81.                 [list "Math Submenus" "Text Submenus"]] \
  82.                 $texMenu]
  83.     } else {
  84.             return [list build [concat \
  85.                 [listToDummySubmenus [set TeX::Menus(Top)]] \
  86.                 [list "LaTeX Help"] \
  87.                 {(-} \
  88.                 [listToDummySubmenus [set TeX::Menus(Bottom)]] \
  89.                 [listToDummySubmenus [set TeX::Menus(MathSubMenus)]] \
  90.                 [listToDummySubmenus [set TeX::Menus(TextSubMenus)]] \
  91.                 ] \
  92.                 {TeX::mp::latex -M TeX -m} \
  93.                 [concat [set TeX::Menus(Top)] [set TeX::Menus(Bottom)] \
  94.                 [set TeX::Menus(MathSubMenus)] [set TeX::Menus(TextSubMenus)]] \
  95.                 $texMenu]
  96.     }
  97. menu::buildProc "Math Submenus" TeX::sub::Math
  98. menu::buildProc "Text Submenus" TeX::sub::Text
  99. menu::buildProc Typeset TeX::sub::Typeset
  100. menu::buildProc TypesetOtherFiles TeX::sub::TypesetOtherFiles
  101. proc TeX::sub::Math {} {
  102.         global TeX::Menus
  103.         return [list build \
  104.             [listToDummySubmenus [set TeX::Menus(MathSubMenus)]] \
  105.             {dummy -M TeX -m} \
  106.             [set TeX::Menus(MathSubMenus)] \
  107.             {Math Submenus}]
  108. }
  109. proc TeX::sub::Text {} {
  110.         global TeX::Menus
  111.         return [list build \
  112.             [listToDummySubmenus [set TeX::Menus(TextSubMenus)]] \
  113.             {dummy -M TeX -m} \
  114.             [set TeX::Menus(TextSubMenus)] \
  115.             {Text Submenus}]
  116. }
  117.  
  118. set TeX::Menus(TextSubMenus) [list \
  119.         "Text Style" "Text Size" "Text Commands" "International" \
  120.         "Environments" "Boxes" "Miscellaneous"\
  121. ]
  122.  
  123. set TeX::Menus(Top) [list "Typeset" "Goto" "LaTeX Utilities"]
  124.  
  125. set TeX::Menus(Bottom) [list "Documents" "Page Layout" "Sectioning"]
  126.  
  127. set TeX::Menus(MathSubMenus) [list \
  128.         "Math Modes" "Math Style" "Math Environments" "Formulas" "Greek"  \
  129.         "Binary Operators" "Relations" "Arrows" "Dots" "Symbols" \
  130.         "Functions" "Large Operators" "Delimiters" "Math Accents" \
  131.         "Grouping" "Spacing" \
  132.         ]
  133.  
  134. ## 
  135.  # foreach v [list Top Bottom MathSubMenus TextSubMenus] {
  136.  #     foreach i [set TeX::Menus($v)] {
  137.  #         menu::buildProc $i TeX::sub::[join ${i} ""]
  138.  #     }
  139.  # }
  140.  ##
  141.  
  142. proc TeX::mp::latex {menu item} {
  143.         switch $item {
  144.                 {LaTeX Help}  {set func {global HOME; edit -r "$HOME:Help:LaTeX Help"}}
  145.                 default {set func $item}
  146.         }
  147.         eval $func
  148. }
  149.  
  150. #############################################################################
  151. #
  152. # Submenu definitions
  153. #
  154. #############################################################################
  155.  
  156. # Return the "Typeset" submenu.  If the current document belongs
  157. # to a TeX fileset, display the base filename throughout.
  158. #
  159. proc TeX::sub::Typeset {{currentWin ""}} {
  160.         global mode TeXmodeVars
  161.         if {$currentWin == ""} {set currentWin [win::Current]}
  162.         if {$currentWin == ""} {
  163.                 return [TeX::sub::MinimalTypeset]
  164.         } elseif { $mode == "TeX" } {
  165.                 set currentDoc [file tail $currentWin]
  166.                 # Process an untitled window:
  167.                 if { [set num [winUntitled]] } {
  168.                         if { $num > 1 } { set currentDoc "Untitled$num" }
  169.                         # fall through
  170.                 }
  171.         } else {
  172.                 return [TeX::sub::MinimalTypeset]
  173.         }
  174.         set docBasename [file rootname $currentDoc]
  175.         set projBasename $docBasename
  176.         set currentProj [isWindowInFileset $currentWin "tex"]
  177.         if {    $currentProj !=    "" } {
  178.                 set currentDoc [file tail [texFilesetBaseName $currentProj]]
  179.                 set docBasename [file rootname $currentDoc]
  180.         }
  181.         # Determine which menu items are dimmed:
  182.         foreach ext {DVI PS AUX IDX Selection} { set prefix$ext "" }
  183.         set ma [list \
  184.             {menu -n "Format" {}} \
  185.             "(-"]
  186.         if $TeXmodeVars(runTeXInBack) {
  187.                 lappend ma [list /TBack Typeset $currentDoc] \
  188.                     [list /T<U<ITypeset $currentDoc]
  189.         } else {
  190.                 lappend ma [list /TTypeset $currentDoc] \
  191.                     [list /T<U<IBack Typeset $currentDoc]
  192.         }
  193.         lappend ma \
  194.             [list <U<O/V${prefixDVI}View "$docBasename\.dvi"] \
  195.             [list <U<O/P${prefixDVI}Print "$docBasename\.dvi"] \
  196.             "(-" \
  197.             {<U<O/TTypeset Clipboard} \
  198.             [list ${prefixSelection}Typeset Selection] \
  199.             "(-" \
  200.             [list <S${prefixPS}Open "$docBasename\.ps"] \
  201.             [list <S${prefixDVI}dvips "$docBasename\.dvi"] \
  202.             [list ${prefixPS}View "$docBasename\.ps"] \
  203.             [list ${prefixPS}Print "$docBasename\.ps"] \
  204.             "(-" \
  205.             [list <SOpen "$docBasename\.bbl"] \
  206.             [list <S${prefixAUX}bibtex "$docBasename\.aux"] \
  207.             [list <E<SOpen "$docBasename\.ind"] \
  208.             [list <S${prefixIDX}makeindex "$docBasename\.idx"] \
  209.             "(-" \
  210.             {menu -n "Other Files" {}} \
  211.             "(-" \
  212.             {Remove Auxiliary Files…} \
  213.             {Remove Temporary Files}
  214.         return [list build $ma {TeX::mp::typeset -M TeX -m} \
  215.             {Format TypesetOtherFiles}]
  216. }
  217.  
  218. proc TeX::sub::MinimalTypeset {} {
  219.         set ma [list \
  220.             [list /TTypeset…] \
  221.             "(-" \
  222.             {<U<O/TTypeset Clipboard} \
  223.             {Typeset Selection} \
  224.             ]
  225.         return [list build $ma {TeX::mp::typeset -M TeX -m}]
  226. }
  227. # Return a submenu of LaTeX formats:
  228.  
  229. set "menu::proc(Format)" TeX::Format
  230. set "menu::otherflags(Format)" {-M TeX -m}
  231. set "menu::items(Format)" {
  232.         "LaTeX"
  233.         "Big-LaTeX"
  234.         "AMS-TeX"
  235.         "Plain TeX"
  236. }
  237.  
  238. # Return a submenu of LaTeX auxiliary files with basename $basename1,
  239. # except for the .aux file whose primary basename is $basename2.
  240. #
  241.  
  242. proc TeX::sub::TypesetOtherFiles {} {
  243.         set currentWin [win::Current]
  244.         set currentDoc [file tail $currentWin]
  245.         set docBasename [file rootname $currentDoc]
  246.         set projBasename $docBasename
  247.         set currentProj [isWindowInFileset $currentWin "tex"]
  248.         if {$currentProj !=    ""} {
  249.                 set currentDoc [file tail [texFilesetBaseName $currentProj]]
  250.                 set docBasename [file rootname $currentDoc]
  251.         }
  252.         set ma [list \
  253.             [list Open "$docBasename\.log"] \
  254.             [concat <SOpen "$docBasename\.aux "] \
  255.             [concat <SOpen "$projBasename\.aux"] \
  256.             [list Open "$docBasename\.toc"] \
  257.             [list Open "$docBasename\.lof"] \
  258.             [list Open "$docBasename\.lot"] \
  259.             [list Open "$docBasename\.idx"] \
  260.             [list Open "$docBasename\.bbl"] \
  261.             "(-" \
  262.             [list Open "$docBasename\.blg"] \
  263.             [list Open "$docBasename\.ilg"] \
  264.             "(-" \
  265.             {<U<O/OOpen Any TeX File…} \
  266.             ]
  267.     return [list build $ma {TeX::mp::typeset -M TeX -m} \
  268.         "" {Other Files}]
  269.     ]
  270. }
  271. proc TeX::mp::typeset {submenu item} {
  272.     switch -regexp $item {
  273.         {Typeset Selection}  {set func "typesetSelection"}
  274.         {Typeset Clipboard}  {set func "typesetClipboard"}
  275.         "Back\ Typeset.*"    {set func "typeset 1"}
  276.         "Typeset.*"  {set func "typeset"}
  277.         "View.*\.dvi$"  {set func {doTypesetCommand view DVI}}
  278.         "Print.*\.dvi$"  {set func {doTypesetCommand print DVI}}
  279.         "dvips.*\.dvi$"  {set func {doTypesetCommand dvips DVI}}
  280.         "View.*\.ps$"  {set func {doTypesetCommand view PS}}
  281.         "Print.*\.ps$"  {set func {doTypesetCommand print PS}}
  282.         "bibtex.*"  {set func {doTypesetCommand bibtex AUX}}
  283.         "makeindex.*"  {set func {doTypesetCommand makeindex IDX}}
  284.         "Open.*\.ps$"  {set func {doTypesetCommand open PS}}
  285.         "Open.*\.bbl$"  {set func {doTypesetCommand open BBL}}
  286.         "Open.*\.ind$"  {set func {doTypesetCommand open IND}}
  287.         "Open.*\.log$"  {set func {doTypesetCommand open LOG}}
  288.         "Open.*\.aux$"  {set func {doTypesetCommand open AUX 1}}
  289.         "Open.*\.aux $"  {set func {doTypesetCommand open AUX}}
  290.         "Open.*\.toc$"  {set func {doTypesetCommand open TOC}}
  291.         "Open.*\.lof$"  {set func {doTypesetCommand open LOF}}
  292.         "Open.*\.lot$"  {set func {doTypesetCommand open LOT}}
  293.         "Open.*\.idx$"  {set func {doTypesetCommand open IDX}}
  294.         "Open.*\.blg$"  {set func {doTypesetCommand open BLG}}
  295.         "Open.*\.ilg$"  {set func {doTypesetCommand open ILG}}
  296.         {Open Any TeX File}  {set func "openAnyTeXFile"}
  297.         {Remove Auxiliary Files}  {set func "removeAuxiliaryFiles"}
  298.         {Remove Temporary Files}  {set func "removeTemporaryFiles"}
  299.         default {set func $item}
  300.     }
  301.     eval $func
  302. }
  303.  
  304. # Return the "Goto" submenu:
  305. set menu::proc(Goto) TeX::mp::goto
  306. set menu::otherflags(Goto) {-M TeX -m}
  307. set menu::items(Goto) {
  308.         "<U/SLaTeX"
  309.         "BibTeX"
  310.         "MakeIndex"
  311.         "(-"
  312.         {Next Template Stop}
  313.         {Prev Template Stop}
  314.         "(-"
  315.         {Next Command}
  316.         {Prev Command}
  317.         {Next Command Select}
  318.         {Prev Command Select}
  319.         {Next Command Select With Args}
  320.         {Prev Command Select With Args}
  321.         "(-"
  322.         {Next Environment}
  323.         {Prev Environment}
  324.         {Next Environment Select}
  325.         {Prev Environment Select}
  326.         "(-"
  327.         {Next Section}
  328.         {Prev Section}
  329.         {Next Section Select}
  330.         {Prev Section Select}
  331.         {Next Subsection}
  332.         {Prev Subsection}
  333.         {Next Subsection Select}
  334.         {Prev Subsection Select}
  335.         }
  336.  
  337. proc TeX::mp::goto {submenu item} {
  338.     switch $item {
  339.         "LaTeX"  {set func "texApp TeX"}
  340.         "BibTeX" - "MakeIndex" {set func "texApp $item"}
  341.         {Next Template Stop}  {set func "ring::+"}
  342.         {Prev Template Stop}  {set func "ring::-"}
  343.         {Next Command}  {set func "nextCommand"}
  344.         {Prev Command}  {set func "prevCommand"}
  345.         {Next Command Select}  {set func "nextCommandSelect"}
  346.         {Prev Command Select}  {set func "prevCommandSelect"}
  347.         {Next Command Select With Args}  {set func "nextCommandSelectWithArgs"}
  348.         {Prev Command Select With Args}  {set func "prevCommandSelectWithArgs"}
  349.         {Next Environment}  {set func "nextEnvironment"}
  350.         {Prev Environment}  {set func "prevEnvironment"}
  351.         {Next Environment Select}  {set func "nextEnvironmentSelect"}
  352.         {Prev Environment Select}  {set func "prevEnvironmentSelect"}
  353.         {Next Section}  {set func "nextSection"}
  354.         {Prev Section}  {set func "prevSection"}
  355.         {Next Section Select}  {set func "nextSectionSelect"}
  356.         {Prev Section Select}  {set func "prevSectionSelect"}
  357.         {Next Subsection}  {set func "nextSubsection"}
  358.         {Prev Subsection}  {set func "prevSubsection"}
  359.         {Next Subsection Select}  {set func "nextSubsectionSelect"}
  360.         {Prev Subsection Select}  {set func "prevSubsectionSelect"}
  361.         default {set func $item}
  362.     }
  363.     eval $func
  364. }
  365.  
  366. # Return the "LaTeX Utilities" submenu:
  367.  
  368. set "menu::proc(LaTeX Utilities)" TeX::mp::latexUtils
  369. set "menu::otherflags(LaTeX Utilities)" {-M TeX -m}
  370. set "menu::items(LaTeX Utilities)" {
  371.         {Delete Template Stops}
  372.         {Delete Comments}
  373.         "(-"
  374.         {Convert Quotes}
  375.         {Convert Dollar Signs}
  376.         "(-"
  377.         {Convert Accents to LaTeX}
  378.         {Convert LaTeX to Accents}
  379.         "(-"
  380.         {Short LaTeX Menu}
  381.         {AMS-LaTeX}
  382. }
  383. #        {<U<O/CChoose Command…}
  384. #        "(-"
  385.  
  386. proc TeX::mp::latexUtils {submenu item} {
  387.     switch $item {
  388.         {Choose Command}  {set func {chooseCommand [getLaTeXMenu]}}
  389.         {Insert Reference}  {set func "insertReference"}
  390.         {Delete Template Stops}  {set func "ring::clear"}
  391.         {Delete Comments}  {set func "deleteComments"}
  392.         {Convert Quotes}  {set func "convertQuotes"}
  393.         {Convert Dollar Signs}  {set func "convertDollarSigns"}
  394.         {Convert Accents to LaTeX}  {set func "accentsToLatexInRegion"}
  395.         {Convert LaTeX to Accents}  {set func "latexToAccentsInRegion"}
  396.         {Short LaTeX Menu}  {set func "toggleLaTeXMenus"}
  397.         {AMS-LaTeX}  {set func "toggleAMSLaTeX"}
  398.         default {set func $item}
  399.     }
  400.     eval $func
  401. }
  402.  
  403. # Return the "Documents" submenu:
  404. set "menu::proc(Documents)" TeX::mp::documents
  405. set "menu::otherflags(Documents)" {-M TeX -m}
  406. set "menu::items(Documents)" [list \
  407.         {<U<O/NNew Document…} \
  408.         {menu -n "Insert Document" {}} \
  409.         "(-" \
  410.         "options…" \
  411.         "<B<I/Uusepackage" \
  412.         {menu -n "Packages" {}} \
  413.         "(-" \
  414.         "filecontents…" \
  415.         {filecontents All} \
  416.         "(-" \
  417.         {Rebuild Documents Submenu} \
  418.         ]
  419. set menu::which_subs(Documents) [list "Insert Document" "Packages"]
  420. menu::buildProc Packages TeX::sub::Packages
  421.  
  422. set "menu::proc(Insert Document)" TeX::mp::documents
  423. set "menu::otherflags(Insert Document)" {-M TeX -m}
  424. set "menu::items(Insert Document)" {
  425.         "article"
  426.         "report"
  427.         "book"
  428.         "letter"
  429.         "slides"
  430.         "other…"
  431.         }
  432.  
  433.  
  434. proc TeX::mp::documents {submenu item} {
  435.     switch $item {
  436.         {New Document}  {set func "newLaTeXDocument"}
  437.         {article}  {set func "articleDocumentclass"}
  438.         {report}  {set func "reportDocumentclass"}
  439.         {book}  {set func "bookDocumentclass"}
  440.         {letter}  {set func "letterDocumentclass"}
  441.         {slides}  {set func "slidesDocumentclass"}
  442.         {other}  {set func "otherDocumentclass"}
  443.         {usepackage} {insertPackage ""; return}
  444.         {filecontents All} {set func "filecontentsAll"}
  445.         {Rebuild Documents Submenu}  {
  446.             global packagesSubmenuItems
  447.             set packagesSubmenuItems ""
  448.             message "Rebuilding the Documents submenu…"
  449.             eval [documentsSubmenu 1]
  450.             message ""
  451.             return
  452.         }
  453.         default {set func $item}
  454.     }
  455.     eval $func
  456. }
  457. proc TeX::sub::Packages {} {
  458.     global TeXmodeVars
  459.     if { $TeXmodeVars(buildPkgsSubmenu) } {
  460.         global packagesSubmenuItems
  461.         if { ![info exists packagesSubmenuItems] || $packagesSubmenuItems == "" } {
  462.                 global latexPackages
  463.                 set folders [buildTeXSearchPath 0]
  464.                 # See DblClickAux.tcl for the definition of 'buildSubMenu':
  465.                 set packagesSubmenuItems \
  466.                     [buildSubMenu $folders "Packages" TeX::mp::package latexPackages ".sty"]
  467.         }
  468.         return $packagesSubmenuItems
  469.     } else {
  470.         catch {unset packagesSubmenuItems}
  471.         return ""
  472.     }
  473. }
  474. proc TeX::mp::package {submenu pkgName} {
  475.     global latexPackages
  476.     # See latexMacros.tcl for definition of 'insertPackage':
  477.     insertPackage [file tail [file rootname $latexPackages($submenu:$pkgName)]]
  478. }
  479.  
  480. # Return the "Page Layout" submenu:
  481.  
  482. set "menu::otherflags(Page Layout)" {-M TeX -m}
  483. set "menu::items(Page Layout)"  {
  484.         "maketitle"
  485.         "(-"
  486.         "abstract"
  487.         "titlepage"
  488.         "(-"
  489.         "pagestyle…"
  490.         "thispagestyle…"
  491.         "pagenumbering…"
  492.         "(-"
  493.         "twocolumn"
  494.         "onecolumn"
  495. }
  496.  
  497.  
  498. # Return the "Sectioning" submenu:
  499.  
  500. set menu::proc(Sectioning) TeX::mp::sectioning
  501. set menu::otherflags(Sectioning) {-M TeX -m}
  502. set menu::items(Sectioning) {
  503.         "<Spart*"
  504.         "<Spart"
  505.         "<E<Schapter*"
  506.         "<Schapter"
  507.         "<E<Ssection*"
  508.         "<Ssection"
  509.         "<E<Ssubsection*"
  510.         "<Ssubsection"
  511.         "<E<Ssubsubsection*"
  512.         "<Ssubsubsection"
  513.         "<E<Sparagraph*"
  514.         "<Sparagraph"
  515.         "<E<Ssubparagraph*"
  516.         "<Ssubparagraph"
  517.         "(-"
  518.         "appendix"
  519. }
  520.  
  521. proc TeX::mp::sectioning {submenu item} {
  522.     if [regexp (part|chapter|section|paragraph) $item] {
  523.             eval sectioning $item
  524.     } else {
  525.             eval $item
  526.     }
  527. }
  528.  
  529. # Return the "Text Style" submenu:
  530. set "menu::otherflags(Text Style)" {-M TeX -m}
  531. set "menu::items(Text Style)"  {
  532.         "<S<B<I/Eemph"
  533.         "<S<U<B<I/Eem"
  534.         "<B<O/Uunderline"
  535.         "(-"
  536.         "<Supshape"
  537.         "<Stextup"
  538.         "<E<S<B<I/Itextit"
  539.         "<S<U<B<I/Iitshape"
  540.         "<E<S<B<I/Stextsl"
  541.         "<S<U<B<I/Sslshape"
  542.         "<E<S<B<I/Htextsc"
  543.         "<S<U<B<I/Hscshape"
  544.         "(-"
  545.         "<Smdseries"
  546.         "<Stextmd"
  547.         "<E<S<B<I/Btextbf"
  548.         "<S<U<B<I/Bbfseries"
  549.         "(-"
  550.         "<S<B<I/Rtextrm"
  551.         "<S<U<B<I/Rrmfamily"
  552.         "<E<S<B<I/Wtextsf"
  553.         "<S<U<B<I/Wsffamily"
  554.         "<E<S<B<I/Ytexttt"
  555.         "<S<U<B<I/Yttfamily"
  556.         "(-"
  557.         "<Snormalfont"
  558.         "<Stextnormal"
  559.         }
  560.  
  561.  
  562. # Return the "Text Size" submenu:
  563. proc TeX::mp::textSize {menu item} {
  564.         doTextSize $item
  565. }
  566.  
  567. proc TeX::mp::textCommands {menu item} {
  568.         insertObject "\\${item}"
  569. }
  570. set "menu::proc(Text Commands)" TeX::mp::textCommands
  571. set "menu::otherflags(Text Commands)" {-M TeX -m}
  572. set "menu::items(Text Commands)" {
  573.         "textsuperscript"
  574.         "textcircled"
  575.         "(-"
  576.         "textcompwordmark"
  577.         "textvisiblespace"
  578.         "(-"
  579.         "!—textemdash"
  580.         "!–textendash"
  581.         "!¡textexclamdown"
  582.         "!¿textquestiondown"
  583.         "!“textquotedblleft"
  584.         "!”textquotedblright"
  585.         "!‘textquoteleft"
  586.         "!’textquoteright"
  587.         "(-"
  588.         "textbullet"
  589.         "textperiodcentered"
  590.         "(-"
  591.         "textbackslash"
  592.         "textbar"
  593.         "textless"
  594.         "textgreater"
  595.         "(-"
  596.         "textasciicircum"
  597.         "textasciitilde"
  598.         "(-"
  599.         "textregistered"
  600.         "texttrademark"
  601. }
  602.  
  603. # Return the "International" submenu:
  604.     set menu::proc(International) TeX::mp::internat
  605. set menu::otherflags(International) {-M TeX -m}
  606. set menu::items(International) {
  607.         {ò}
  608.         {ó}
  609.         {ô}
  610.         {ö}
  611.         {õ}
  612.         "(-"
  613.         {ç}
  614.         {œ}
  615.         {æ}
  616.         {å}
  617.         {ø}
  618.         "(-"
  619.         {Ç}
  620.         {Œ}
  621.         {Æ}
  622.         {Å}
  623.         {Ø}
  624.         "(-"
  625.         ss
  626.         SS
  627.         "(-"
  628.         {¿}
  629.         {¡}
  630. }
  631. proc TeX::mp::internat {menu item} {
  632.     $item
  633. }
  634.  
  635. # Return the "Environments" submenu:
  636.  
  637.     set menu::proc(Environments) TeX::mp::envs
  638. set menu::otherflags(Environments) {-M TeX -m}
  639. set menu::items(Environments) {
  640.         "<I/kitemize…"
  641.         "<U<I/kenumerate…"
  642.         "<B<I/kdescription…"
  643.         "thebibliography…"
  644.         "(-"
  645.         "<I/lslide"
  646.         "<U<I/loverlay"
  647.         "<B<I/lnote"
  648.         "(-"
  649.         "<I/mfigure"
  650.         "<U<I/mtable"
  651.         "<B<I/mtabular…"
  652.         "(-"
  653.         "<I/nverbatim"
  654.         "<U<I/nquote"
  655.         "<B<I/nquotation"
  656.         "verse"
  657.         "(-"
  658.         "<I/ocenter"
  659.         "<U<I/oflushleft"
  660.         "<B<I/oflushright"
  661.         "(-"
  662.         {<U<O/EChoose Environment…}
  663. }
  664. proc TeX::mp::envs {submenu item} {
  665.     switch $item {
  666.         {Choose Environment}  {set func chooseEnvironment}
  667.         default {set func $item}
  668.     }
  669.     eval $func
  670. }
  671.  
  672. # Return the "Boxes" submenu:
  673.  
  674.     set "menu::otherflags(Boxes)" {-M TeX -m}
  675. set "menu::items(Boxes)"  {
  676.         "<B<I/Mmbox"
  677.         "makebox"
  678.         "fbox"
  679.         "framebox"
  680.         "(-"
  681.         "newsavebox"
  682.         "sbox"
  683.         "savebox"
  684.         "usebox"
  685.         "(-"
  686.         "raisebox"
  687.         "(-"
  688.         "parbox"
  689.         "minipage"
  690.         "(-"
  691.         "rule"
  692. }
  693.  
  694. # Return the "Miscellaneous" submenu:
  695.     set menu::proc(Miscellaneous) TeX::mp::misc
  696. set menu::otherflags(Miscellaneous) {-M TeX -m}
  697. set menu::items(Miscellaneous) {
  698.         "<B<I/Vverb"
  699.         "<B<I/Ffootnote"
  700.         {<B<I/Nmarginal note}
  701.         "(-"
  702.         "<B<I/Llabel"
  703.         "<B<I/Xref"
  704.         "<B<I/Ppageref"
  705.         "<B<I/Ccite"
  706.         "<U<B<I/Cnocite"
  707.         "(-"
  708.         "<B<I/Jitem"
  709.         "(-"
  710.         "<B<I/'quotes"
  711.         {<U<B<I/'double quotes}
  712.         "(-"
  713.         {TeX logo}
  714.         {LaTeX logo}
  715.         {LaTeX2e logo}
  716.         "date"
  717.         "(-"
  718.         "!†dag"
  719.         "ddag"
  720.         {!§section mark}
  721.         {!¶paragraph mark}
  722.         "!©copyright"
  723.         "!£pounds"
  724. }
  725. proc TeX::mp::misc {submenu item} {
  726.     switch $item {
  727.         {marginal note}  {set func "marginalNote"}
  728.         "item" {set func "insertItem"}
  729.         "label" {set func "insertLabel"}
  730.         {double quotes}  {set func "dblQuotes"}
  731.         {TeX logo}  {set func "texLogo"}
  732.         {LaTeX logo}  {set func "latexLogo"}
  733.         {LaTeX2e logo}  {set func "latex2eLogo"}
  734.         "date" {set func "today"}
  735.         {section mark}  {set func "sectionMark"}
  736.         {paragraph mark}  {set func "paragraphMark"}
  737.         default {set func $item}
  738.     }
  739.     eval $func
  740. }
  741.  
  742. # Return a "Math Modes" submenu (called below and in latexKeys.tcl):
  743. set "menu::proc(Math Modes)" TeX::mp::mathModes
  744. set "menu::otherflags(Math Modes)" {-M TeX -m}
  745. proc TeX::sub::MathModes {} {
  746.         global TeXmodeVars menu::items
  747.         if {$TeXmodeVars(useDollarSigns)} {
  748.                 bind '4' <zc> texMath "TeX"
  749.                 bind '4' <zoc> texDisplaymath "TeX"
  750.                 set "menu::items(Math Modes)" {
  751.                         {<B<O/MTeX math}
  752.                         {<B<I<O/MTeX displaymath}
  753.                         "(-"
  754.                         {LaTeX math}
  755.                         {LaTeX displaymath}
  756.                 }
  757.         } else {
  758.                 bind '4' <zc> latexMath "TeX"
  759.                 bind '4' <zoc> latexDisplaymath "TeX"
  760.                 set "menu::items(Math Modes)" {
  761.                         {TeX math}
  762.                         {TeX displaymath}
  763.                         "(-"
  764.                         {<B<O/MLaTeX math}
  765.                         {<B<I<O/MLaTeX displaymath}
  766.                 }
  767.         }
  768. }
  769. proc TeX::mp::mathModes {submenu item} {
  770.     switch $item {
  771.         {TeX math}  {set func "texMath"}
  772.         {TeX displaymath}  {set func "texDisplaymath"}
  773.         {LaTeX math}  {set func "latexMath"}
  774.         {LaTeX displaymath}  {set func "latexDisplaymath"}
  775.         default {set func $item}
  776.     }
  777.     eval $func
  778. }
  779.  
  780. proc TeX::mp::mathStyle {submenu item} {
  781.         switch $item {
  782.                 mathbb {doUppercaseMathStyle mathbb "math blackboard bold"}
  783.                 mathfrak {doMathStyle mathfrak "math fraktur"}
  784.                 mathit {doMathStyle mathit "math italic"}
  785.                 mathrm {doMathStyle mathrm "math roman"}
  786.                 mathbf {doMathStyle mathbf "math bold"}
  787.                 mathsf {doMathStyle mathsf "math sans serif"}
  788.                 mathtt {doMathStyle mathtt "math typewriter"}
  789.                 mathcal {doUppercaseMathStyle mathcal "math calligraphic"}
  790.                 displaystyle {doMathStyle displaystyle "display style"}
  791.                 textstyle {doMathStyle textstyle "text style"}
  792.                 scriptstyle {doMathStyle scriptstyle "script style"}
  793.                 scriptscriptstyle {doMathStyle scriptscriptstyle "scriptscript style"}
  794.         }
  795. }
  796.  
  797. # Return the "Math Style" submenu:
  798. set "menu::proc(Math Style)" TeX::mp::mathStyle
  799. set "menu::otherflags(Math Style)" {-M TeX -m}
  800. set "menu::proc(Text Size)" TeX::mp::textSize
  801. set "menu::otherflags(Text Size)" {-M TeX -m}
  802. proc toggleAMSLaTeXmenus {} {
  803.         global useAMSLaTeX menu::items
  804.         if { $useAMSLaTeX } {
  805.             set "menu::items(Math Style)" {
  806.                 "<B<I<O/Imathit"
  807.                 "<B<I<O/Rmathrm"
  808.                 "<B<I<O/Bmathbf"
  809.                 "<B<I<O/Wmathsf"
  810.                 "<B<I<O/Ymathtt"
  811.                 "<B<I<O/Cmathcal"
  812.                 "(-"
  813.                 "mathbb"
  814.                 "mathfrak"
  815.                 "(-"
  816.                 "<B<I<O/Ddisplaystyle"
  817.                 "<B<I<O/Ttextstyle"
  818.                 "<B<I<O/Sscriptstyle"
  819.                 "scriptscriptstyle"
  820.             }
  821.             set "menu::items(Text Size)" {
  822.                 "<B<I/1Tiny"
  823.                 "<B<I/2tiny"
  824.                 "<B<I/3SMALL"
  825.                 "<B<I/4Small"
  826.                 "<B<I/5small"
  827.                 "normalsize"
  828.                 "<B<I/6large"
  829.                 "<B<I/7Large"
  830.                 "<B<I/8LARGE"
  831.                 "<B<I/9huge"
  832.                 "<B<I/0Huge"
  833.             }
  834.     } else {
  835.         set "menu::items(Math Style)" {
  836.             "<B<I<O/Imathit"
  837.             "<B<I<O/Rmathrm"
  838.             "<B<I<O/Bmathbf"
  839.             "<B<I<O/Wmathsf"
  840.             "<B<I<O/Ymathtt"
  841.             "<B<I<O/Cmathcal"
  842.             "(-"
  843.             "<B<I<O/Ddisplaystyle"
  844.             "<B<I<O/Ttextstyle"
  845.             "<B<I<O/Sscriptstyle"
  846.             "scriptscriptstyle"
  847.         }
  848.         set "menu::items(Text Size)" {
  849.             "<B<I/1tiny"
  850.             "<B<I/2scriptsize"
  851.             "<B<I/3footnotesize"
  852.             "<B<I/4small"
  853.             "<B<I/5normalsize"
  854.             "<B<I/6large"
  855.             "<B<I/7Large"
  856.             "<B<I/8LARGE"
  857.             "<B<I/9huge"
  858.             "<B<I/0Huge"
  859.         }
  860.   }
  861. }
  862.  
  863. # Return the "Math Environments" submenu:
  864.     set "menu::proc(Math Environments)" TeX::mp::mathEnvs
  865. set "menu::otherflags(Math Environments)" {-M TeX -m}
  866. set "menu::items(Math Environments)" {
  867.         "<I/imath"
  868.         "(-"
  869.         "<U<I/idisplaymath"
  870.         "<B<I/iequation"
  871.         "(-"
  872.         "<U<I/jeqnarray*…"
  873.         "<B<I/jeqnarray…"
  874.         "(-"
  875.         "<I/jarray…"
  876.         "(-"
  877.         {<U<O/EChoose Environment…}
  878. }
  879. proc TeX::mp::mathEnvs {submenu item} {
  880.     switch $item {
  881.         "array"  {set func "myArray"}
  882.         "eqnarray\*"  {set func "eqnarrayStar"}
  883.         {Choose Environment}  {set func chooseEnvironment}
  884.         default {set func $item}
  885.     }
  886.     eval $func
  887. }
  888.  
  889. # Return the "Formulas" submenu:
  890.     set menu::proc(Formulas) TeX::mp::formulas
  891. set menu::otherflags(Formulas) {-M TeX -m}
  892. set menu::items(Formulas) {
  893.         "subscript"
  894.         "superscript"
  895.         "(-"
  896.         "<B<O/Ffrac"
  897.         {<B<O/Rsqrt}
  898.         {nth root}
  899.         "(-"
  900.         {<B<O/1one parameter…}
  901.         {<B<O/2two parameters…}
  902. }
  903. proc TeX::mp::formulas {submenu item} {
  904.     switch $item {
  905.         {frac}  {set func "fraction"}
  906.         {sqrt}  {set func "squareRoot"}
  907.         {nth root}  {set func "nthRoot"}
  908.         {one parameter}  {set func "oneParameter"}
  909.         {two parameters}  {set func "twoParameters"}
  910.         default {set func $item}
  911.     }
  912.     eval $func
  913. }
  914.  
  915. proc TeX::mp::greek {submenu item} {
  916.         checkMathMode $item 1; insertObject "\\$item"
  917. }
  918.  
  919. # Return the "Greek" submenu:
  920.     set menu::proc(Greek) TeX::mp::greek
  921. set menu::otherflags(Greek) {-M TeX -m}
  922. set menu::items(Greek) {
  923.         "alpha"
  924.         "beta"
  925.         "<SGamma"
  926.         "<Sgamma"
  927.         "<E<SDelta"
  928.         "<Sdelta"
  929.         "epsilon"
  930.         "zeta"
  931.         "eta"
  932.         "<STheta"
  933.         "<Stheta"
  934.         "iota"
  935.         "kappa"
  936.         "<SLambda"
  937.         "<Slambda"
  938.         "mu"
  939.         "nu"
  940.         "<SXi"
  941.         "<Sxi"
  942.         "omicron"
  943.         "<SPi"
  944.         "<Spi"
  945.         "rho"
  946.         "<SSigma"
  947.         "<Ssigma"
  948.         "tau"
  949.         "<SUpsilon"
  950.         "<Supsilon"
  951.         "<E<SPhi"
  952.         "<Sphi"
  953.         "chi"
  954.         "<SPsi"
  955.         "<Spsi"
  956.         "<E<SOmega"
  957.         "<Somega"
  958.         "(-"
  959.         "varepsilon"
  960.         "vartheta"
  961.         "varpi"
  962.         "varrho"
  963.         "varsigma"
  964.         "varphi"
  965. }
  966.  
  967. proc TeX::mp::binaryOperators {submenu item} {
  968.         if [regexp {[lr]hd$} $item] {
  969.                 if {![isSymbolPackageLoaded]} {return}
  970.         }
  971.         checkMathMode $item 1; insertObject "\\$item"
  972. }
  973.  
  974. # Return the "Binary Operators" submenu:
  975.     set "menu::proc(Binary Operators)" TeX::mp::binaryOperators
  976. set "menu::otherflags(Binary Operators)" {-M TeX -m}
  977. set "menu::items(Binary Operators)" {
  978.         "!±pm"
  979.         "mp"
  980.         "times"
  981.         "!÷div"
  982.         "ast"
  983.         "star"
  984.         "circ"
  985.         "bullet"
  986.         "cdot"
  987.         "cap"
  988.         "cup"
  989.         "uplus"
  990.         "sqcap"
  991.         "sqcup"
  992.         "vee"
  993.         "wedge"
  994.         "setminus"
  995.         "(-"
  996.         "diamond"
  997.         "bigtriangleup"
  998.         "bigtriangledown"
  999.         "triangleleft"
  1000.         "triangleright"
  1001.         "lhd"
  1002.         "rhd"
  1003.         "unlhd"
  1004.         "unrhd"
  1005.         "(-"
  1006.         "oplus"
  1007.         "ominus"
  1008.         "otimes"
  1009.         "oslash"
  1010.         "odot"
  1011.         "(-"
  1012.         "bigcirc"
  1013.         "dagger"
  1014.         "ddagger"
  1015.         "amalg"
  1016.         "wr"
  1017. }
  1018.  
  1019. # Return the "Relations" submenu:
  1020.     set menu::proc(Relations) TeX::mp::relations
  1021. set menu::otherflags(Relations) {-M TeX -m}
  1022. set menu::items(Relations) {
  1023.         "<S!≥geq"
  1024.         "<S!≤leq"
  1025.         "<E<Ssucc"
  1026.         "<Sprec"
  1027.         "<E<Ssucceq"
  1028.         "<Spreceq"
  1029.         "<E<S!»gg"
  1030.         "<S!«ll"
  1031.         "<E<Ssupset"
  1032.         "<Ssubset"
  1033.         "<E<Ssupseteq"
  1034.         "<Ssubseteq"
  1035.         "<E<Ssqsupset"
  1036.         "<Ssqsubset"
  1037.         "<E<Ssqsupseteq"
  1038.         "<Ssqsubseteq"
  1039.         "<E<Sni"
  1040.         "<Sin"
  1041.         "<E<Sdashv"
  1042.         "<Svdash"
  1043.         "(-"
  1044.         "equiv"
  1045.         "sim"
  1046.         "simeq"
  1047.         "asymp"
  1048.         "!≈approx"
  1049.         "cong"
  1050.         "!≠neq"
  1051.         "doteq"
  1052.         "propto"
  1053.         "(-"
  1054.         "models"
  1055.         "perp"
  1056.         "mid"
  1057.         "parallel"
  1058.         "bowtie"
  1059.         "join"
  1060.         "smile"
  1061.         "frown"
  1062. }
  1063. proc TeX::mp::relations {submenu item} {
  1064.         if {[lsearch -exact "join sqsubset sqsupset" $item]} {
  1065.                 if {![isSymbolPackageLoaded]} {return}
  1066.         }
  1067.         checkMathMode $item 1; insertObject "\\$item"
  1068. }
  1069.  
  1070. # Return the "Arrows" submenu:
  1071. set menu::otherflags(Arrows) {-M TeX -m}
  1072. set menu::proc(Arrows) TeX::mp::arrows
  1073. set menu::items(Arrows) {
  1074.         "<SLeftarrow"
  1075.         "<Sleftarrow"
  1076.         "<E<SRightarrow"
  1077.         "<Srightarrow"
  1078.         "<E<SLeftrightarrow"
  1079.         "<Sleftrightarrow"
  1080.         "<E<SLongleftarrow"
  1081.         "<Slongleftarrow"
  1082.         "<E<SLongrightarrow"
  1083.         "<Slongrightarrow"
  1084.         "<E<SLongleftrightarrow"
  1085.         "<Slongleftrightarrow"
  1086.         "(-"
  1087.         "<SUparrow"
  1088.         "<Suparrow"
  1089.         "<E<SDownarrow"
  1090.         "<Sdownarrow"
  1091.         "<E<SUpdownarrow"
  1092.         "<Supdownarrow"
  1093.         "(-"
  1094.         "mapsto"
  1095.         "longmapsto"
  1096.         "leadsto"
  1097.         "(-"
  1098.         "leftharpoonup"
  1099.         "rightharpoonup"
  1100.         "leftharpoondown"
  1101.         "rightharpoondown"
  1102.         "rightleftharpoons"
  1103.         "hookleftarrow"
  1104.         "hookrightarrow"
  1105.         "nearrow"
  1106.         "searrow"
  1107.         "swarrow"
  1108.         "nwarrow"
  1109. }
  1110.  
  1111. proc TeX::mp::arrows {submenu item} {
  1112.         checkMathMode $item 1; insertObject "\\$item"
  1113. }
  1114.  
  1115. # Return the "Dots" submenu:
  1116.     set menu::proc(Dots) TeX::mp::generalMath
  1117. set menu::otherflags(Dots) {-M TeX -m}
  1118. set menu::items(Dots) {
  1119.         "bullet"
  1120.         "cdot"
  1121.         "(-"
  1122.         "ldots"
  1123.         "cdots"
  1124.         "vdots"
  1125.         "ddots"
  1126. }
  1127.  
  1128. # Return the "Symbols" submenu:
  1129.     set menu::proc(Symbols) TeX::mp::generalMath
  1130. set menu::otherflags(Symbols) {-M TeX -m}
  1131. set menu::items(Symbols) {
  1132.         "aleph"
  1133.         "hbar"
  1134.         "imath"
  1135.         "jmath"
  1136.         "ell"
  1137.         "wp"
  1138.         "Re"
  1139.         "Im"
  1140.         "mho"
  1141.         "(-"
  1142.         "angle"
  1143.         "backslash"
  1144.         "bot"
  1145.         "emptyset"
  1146.         "exists"
  1147.         "forall"
  1148.         "!∞infty"
  1149.         "nabla"
  1150.         "!¬neg"
  1151.         "!∂partial"
  1152.         "prime"
  1153.         "!√surd"
  1154.         "top"
  1155.         "(-"
  1156.         "Box"
  1157.         "Diamond"
  1158.         "triangle"
  1159.         "clubsuit"
  1160.         "diamondsuit"
  1161.         "heartsuit"
  1162.         "spadesuit"
  1163.         "(-"
  1164.         "flat"
  1165.         "natural"
  1166.         "sharp"
  1167. }
  1168.  
  1169. proc TeX::mp::generalMath {submenu item} {
  1170.         if {[lsearch -exact "mho Box Diamond" $item]} {
  1171.                 if {![isSymbolPackageLoaded]} {return}
  1172.         }
  1173.         switch $item {
  1174.                 "lim" - "inf" - "liminf" - "limsup" - "max" - "min" - "sup" {
  1175.                         checkMathMode $item 1
  1176.                         if {[wrapObject "\\$item_{" "}••"]} {
  1177.                             message "limit set"
  1178.                         } else {
  1179.                             message "enter limit"
  1180.                         }
  1181.                 }
  1182.                 "pmod" {
  1183.                         checkMathMode "pmod" 1
  1184.                         if {[wrapObject "\\pmod{" "}••"]} {
  1185.                                 message "parenthesized mod set"
  1186.                         } else {
  1187.                                 message "enter formula"
  1188.                         }
  1189.                 }
  1190.                 "ldots" {insertObject "\\ldots"}
  1191.                 default {
  1192.                         checkMathMode $item 1; insertObject "\\$item"
  1193.                 }
  1194.         }
  1195. }
  1196.  
  1197. # Return the "Functions" submenu:
  1198.     set menu::proc(Functions) TeX::mp::generalMath
  1199. set menu::otherflags(Functions) {-M TeX -m}
  1200. set menu::items(Functions) {
  1201.         "arccos"
  1202.         "arcsin"
  1203.         "arctan"
  1204.         "arg"
  1205.         "cos"
  1206.         "cosh"
  1207.         "cot"
  1208.         "coth"
  1209.         "csc"
  1210.         "deg"
  1211.         "det"
  1212.         "dim"
  1213.         "exp"
  1214.         "gcd"
  1215.         "hom"
  1216.         "inf"
  1217.         "ker"
  1218.         "lg"
  1219.         "<B<O/Llim"
  1220.         "liminf"
  1221.         "limsup"
  1222.         "ln"
  1223.         "log"
  1224.         "max"
  1225.         "min"
  1226.         "Pr"
  1227.         "sec"
  1228.         "sin"
  1229.         "sinh"
  1230.         "sup"
  1231.         "tan"
  1232.         "tanh"
  1233.         "(-"
  1234.         "bmod"
  1235.         "pmod"
  1236. }
  1237.  
  1238. # Return the "Large Operators" submenu:
  1239.     set "menu::otherflags(Large Operators)" {-M TeX -m}
  1240. set "menu::items(Large Operators)"  {
  1241.         "<B<O/Ssum"
  1242.         "<B<O/Pprod"
  1243.         "coprod"
  1244.         "<B<O/Iint"
  1245.         "oint"
  1246.         "(-"
  1247.         "bigcup"
  1248.         "bigcap"
  1249.         "bigsqcup"
  1250.         "bigvee"
  1251.         "bigwedge"
  1252.         "bigodot"
  1253.         "bigotimes"
  1254.         "bigoplus"
  1255.         "biguplus"
  1256. }
  1257.  
  1258. # Return the "Delimiters" submenu:
  1259.     set menu::proc(Delimiters) TeX::mp::delimiters
  1260. set menu::otherflags(Delimiters) {-M TeX -m}
  1261. set menu::items(Delimiters) {
  1262.         "parentheses"
  1263.         "brackets"
  1264.         "braces"
  1265.         {vertical bars}
  1266.         {other delims…}
  1267.         "(-"
  1268.         {half-open interval}
  1269.         {half-closed interval}
  1270.         "(-"
  1271.         {<Smulti-line big parentheses}
  1272.         {<Sbig parentheses}
  1273.         {<E<Smulti-line big brackets}
  1274.         {<Sbig brackets}
  1275.         {<E<Smulti-line big braces}
  1276.         {<Sbig braces}
  1277.         {<E<Smulti-line big vertical bars}
  1278.         {<Sbig vertical bars}
  1279.         {<E<Sother multi-line big delims…}
  1280.         {<Sother big delims…}
  1281.         "(-"
  1282.         {<Smulti-line big left brace}
  1283.         {<Sbig left brace}
  1284.         {<E<Sother multi-line mixed big delims…}
  1285.         {<Sother mixed big delims…}
  1286. }
  1287. proc TeX::mp::delimiters {submenu item} {
  1288.     switch $item {
  1289.         {vertical bars}  {set func "absoluteValue"}
  1290.         {other delims}  {set func "otherDelims"}
  1291.         {half-open interval}  {set func "half-openInterval"}
  1292.         {half-closed interval}  {set func "half-closedInterval"}
  1293.         {big parentheses}  {set func "bigParens"}
  1294.         {multi-line big parentheses}  {set func "multiBigParens"}
  1295.         {big brackets}  {set func "bigBrackets"}
  1296.         {multi-line big brackets}  {set func "multiBigBrackets"}
  1297.         {big braces}  {set func "bigBraces"}
  1298.         {multi-line big braces}  {set func "multiBigBraces"}
  1299.         {big vertical bars}  {set func "bigAbsValue"}
  1300.         {multi-line big vertical bars}  {set func "multiBigAbsValue"}
  1301.         {other big delims}  {set func "otherBigDelims"}
  1302.         {other multi-line big delims}  {set func "otherMultiBigDelims"}
  1303.         {big left brace}  {set func "bigLeftBrace"}
  1304.         {multi-line big left brace}  {set func "multiBigLeftBrace"}
  1305.         {other mixed big delims}  {set func "otherMixedBigDelims"}
  1306.         {other multi-line mixed big delims}  {set func "otherMultiMixedBigDelims"}
  1307.         default {set func $item}
  1308.     }
  1309.     eval $func
  1310. }
  1311.  
  1312. # Return the "Math Accents" submenu:
  1313.     set "menu::otherflags(Math Accents)" {-M TeX -m}
  1314. set "menu::items(Math Accents)"  {
  1315.         "<B<O/Aacute"
  1316.         "<B<O/Bbar"
  1317.         "breve"
  1318.         "<B<O/Ccheck"
  1319.         "<B<O/Ddot"
  1320.         "ddot"
  1321.         "<B<O/Ggrave"
  1322.         "<B<O/Hhat"
  1323.         "<B<O/Ttilde"
  1324.         "<B<O/Vvec"
  1325.         "(-"
  1326.         "widehat"
  1327.         "widetilde"
  1328.         "(-"
  1329.         "imath"
  1330.         "jmath"
  1331. }
  1332.  
  1333. # Return the "Grouping" submenu:
  1334.     set "menu::otherflags(Grouping)" {-M TeX -m}
  1335. set "menu::items(Grouping)"  {
  1336.         "<B<O/Uunderline"
  1337.         "<B<O/Ooverline"
  1338.         "<B<I<O/Uunderbrace"
  1339.         "<B<I<O/Ooverbrace"
  1340.         "(-"
  1341.         "overrightarrow"
  1342.         "overleftarrow"
  1343.         "(-"
  1344.         "stackrel"
  1345. }
  1346.  
  1347. # Return the "Spacing" submenu:
  1348.     set menu::proc(Spacing) TeX::mp::spacing
  1349. set menu::otherflags(Spacing) {-M TeX -m}
  1350. set menu::items(Spacing) {
  1351.         {neg thin}
  1352.         "thin"
  1353.         "medium"
  1354.         "thick"
  1355.         "(-"
  1356.         "quad"
  1357.         "qquad"
  1358.         "(-"
  1359.         "hspace"
  1360.         "vspace"
  1361.         "(-"
  1362.         "hfill"
  1363.         "vfill"
  1364.         "(-"
  1365.         "smallskip"
  1366.         "medskip"
  1367.         "bigskip"
  1368. }
  1369. proc TeX::mp::spacing {submenu item} {
  1370.     switch $item {
  1371.         {neg thin}  {set func "negThin"}
  1372.         default {set func $item}
  1373.     }
  1374.     eval $func
  1375. }
  1376.  
  1377.